home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / unix / include / grp.h < prev    next >
C/C++ Source or Header  |  1992-07-08  |  296b  |  13 lines

  1. #ifndef _GRP_H
  2. #define _GRP_H
  3.  
  4. struct group {
  5.   char *gr_name;        /* name of the group */
  6.   char *gr_passwd;        /* encrypted password of the group */
  7.   gid_t gr_gid;            /* numerical group ID */
  8.   char **gr_mem;        /* null-terminated array of pointers to the
  9.                    individual member names */
  10. };
  11.  
  12. #endif
  13.